home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / antenna / yagiu112 / teststop.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-11  |  221 b   |  16 lines

  1. #include <stdio.h>
  2. #include "yagi.h"
  3.  
  4. extern int errno;
  5.  
  6. void test_for_stop_file(void)
  7. {
  8.     if (   fopen("stop","r") !=NULL        )
  9.     {
  10.         fprintf(stderr,"Remove the file \"stop\" first\n");
  11.         exit(1);
  12.     }
  13.     else
  14.         errno=0;
  15. }
  16.